type github.com/jackc/pgx/v5/internal/sanitize.sqlLexer

15 uses

	github.com/jackc/pgx/v5/internal/sanitize (current package)
		sanitize.go#L116: var sqlLexerPool = &pool[*sqlLexer]{
		sanitize.go#L117: 	new: func() *sqlLexer {
		sanitize.go#L118: 		return &sqlLexer{}
		sanitize.go#L120: 	reset: func(sl *sqlLexer) bool {
		sanitize.go#L121: 		*sl = sqlLexer{}
		sanitize.go#L205: type sqlLexer struct {
		sanitize.go#L215: type stateFn func(*sqlLexer) stateFn
		sanitize.go#L217: func rawState(l *sqlLexer) stateFn {
		sanitize.go#L275: func singleQuoteState(l *sqlLexer) stateFn {
		sanitize.go#L299: func doubleQuoteState(l *sqlLexer) stateFn {
		sanitize.go#L325: func placeholderState(l *sqlLexer) stateFn {
		sanitize.go#L355: func dollarQuoteState(l *sqlLexer) stateFn {
		sanitize.go#L414: func escapeStringState(l *sqlLexer) stateFn {
		sanitize.go#L441: func oneLineCommentState(l *sqlLexer) stateFn {
		sanitize.go#L464: func multilineCommentState(l *sqlLexer) stateFn {